home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MS Money 2.xpl < prev    next >
Text File  |  2003-12-06  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="3"
  3. "DATA 1"="Programs (*.exe)|*.EXE"
  4. "COUNT"="1"
  5. "UIPATH"="Program Options\Other Programs\MS Money"
  6. "NAME"="Calculator #2"
  7. "VERSION"="1.00"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Calc for 2004"
  10. "DESCRIPTION 1"="This option will allow you to change the program that is launched from Microsoft Money when you click 'Tools, Calculator' in it."
  11. "DESCRIPTION 2"="You might wish to change this to Excel.exe if you have Microsoft Excel which can handle many more mathematical functions than Windows' Calculator program can."
  12. "DESCRIPTION 3"="The default program is Calc.exe, which is Windows Calculator."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  18.  
  19.  
  20. sPC="HKCU\Software\Microsoft\Money\"
  21. sV1="HKCU\Software\Microsoft\Money\12.0\Calculator"
  22.  
  23. Sub Plugin_Initialize 
  24.  If RegPathExists(sPC) then
  25.  
  26.     s=RegReadValue(sV1)
  27.     SetUiElement 1,s
  28.  
  29.  else
  30.     Call Disable()
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  s=GetUIElement(1)
  39.  Call RegWriteValue(sV1,s,1)
  40.  
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.